/*:root {
  --primary-green: #0046A0;
  --primary-green-light: #3399FF;
  --primary-green-dark: #1b5e20;
  --dark-bg: #1e1e2f;
  --dark-bg-light: #2a2a3a;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --text-white: #f8fafc;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
}
*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  padding-top: 70px;
  background: var(--light-bg);
  color: var(--text-dark);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark-bg);
  color: var(--text-white);
  padding: 15px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: var(--text-white);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 0;
}

.nav-item i {
  margin-left: 5px;
}

/* Dropdown with full-width transition */
.dropdown {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--card-bg);
  display: none;
  padding: 30px;
  color: var(--text-dark);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
  margin: 0 auto;
}

.dropdown.active {
  display: block;
  max-height: 600px;
  opacity: 1;
  overflow-y: auto;
}

.dropdown-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dropdown-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.dropdown-column {
  min-width: 200px;
}

.dropdown-column h4 {
  margin-bottom: 10px;
}

.dropdown-column ul {
  list-style: none;
}

.dropdown-column li {
  margin-bottom: 8px;
  cursor: pointer;
  position: relative;
}

.dropdown-column li i {
  float: right;
}

.sub-dropdown {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: var(--light-bg);
  padding: 15px;
  white-space: nowrap;
  border: 1px solid var(--border-color);
  z-index: 20;
}

.dropdown-column li:hover .sub-dropdown {
  display: block;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-input {
  display: none;
  padding: 5px;
  margin-left: 10px;
}

.location-select,
.contact-icon {
  cursor: pointer;
}

/* Active nav item */
.nav-item.active > a {
  color: var(--primary-green-light);
  font-weight: bold;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--dark-bg);
    display: none;
    padding: 20px;
    z-index: 1001;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

  .nav-menu.show {
    display: flex;
    max-height: 1000px;
  }

  .nav-item > a {
    padding: 10px 0;
  }

  .dropdown {
    position: static;
    width: 100%;
    padding: 20px;
    max-height: 0;
    box-shadow: none;
  }

  .dropdown.active {
    max-height: 1000px;
  }

  .dropdown-columns {
    flex-direction: column;
  }

  .hamburger {
    display: flex;
  }

  .dropdown-column li:hover .sub-dropdown {
    position: static;
    border: none;
    background: var(--card-bg);
  
  }
}

